home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / strategy / vga_card.000 / vga_cardgames-1.3.1.tar / vga_cardgames / common.h < prev    next >
Text File  |  1995-02-26  |  487b  |  30 lines

  1. /*
  2.  * Card games
  3.  *
  4.  * Copyright (C) Evan Harris, 1991, 1994, 1995.
  5.  *
  6.  * Permission is granted to freely redistribute and modify this code,
  7.  * providing the author(s) get credit for having written it.
  8.  */
  9.  
  10.  
  11. #define TRUE            1
  12. #define FALSE            0
  13.  
  14. #define QUIT            -1
  15. #define NEWGAME            -2
  16. #define RESTART            -3
  17. #define SAVE            -4
  18. #define OPEN            -5
  19. #define UNDO            -6
  20. #define NOOP            -7
  21.  
  22. #define NEW            0
  23. #define LAST            1
  24.  
  25.  
  26. void    EndDisplay(void);
  27.  
  28. void    InitRandom(unsigned char);
  29. long    Random(long);
  30.